compress/flate.compressor.blockStart (field)
8 uses
compress/flate (current package)
deflate.go#L107: blockStart int // window index where current tokens start
deflate.go#L129: if d.blockStart >= windowSize {
deflate.go#L130: d.blockStart -= windowSize
deflate.go#L132: d.blockStart = math.MaxInt32
deflate.go#L166: if d.blockStart <= index {
deflate.go#L167: window = d.window[d.blockStart:index]
deflate.go#L169: d.blockStart = index
deflate.go#L622: d.blockStart, d.byteAvailable = 0, false
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |